home *** CD-ROM | disk | FTP | other *** search
/ Programmer Power Tools / Programmer Power Tools.iso / editor / j414src.arc / TUNE.DOS < prev    next >
Text File  |  1989-10-10  |  890b  |  23 lines

  1. /***************************************************************************
  2.  * This program is Copyright (C) 1986, 1987, 1988 by Jonathan Payne.  JOVE *
  3.  * is provided to you without charge, and with no warranty.  You may give  *
  4.  * away copies of JOVE, including sources, provided that this notice is    *
  5.  * included in all the files.                                              *
  6.  ***************************************************************************/
  7.  
  8. #define NOEXTERNS
  9.  
  10. #include "tune.h"
  11.  
  12. /* these are variables that can be set with the set command, so they are
  13.    allocated more memory than they actually need for the defaults */
  14. char    TmpFilePath[64] = ".",
  15.     Shell[64] = "COMMAND",
  16.     ShFlags[16] = "/C",
  17.     CmdDb[64] = "C:/UNIX/CMDS.DOC";
  18.  
  19. /* these guys are not settable */
  20. char    *d_tempfile = "JOVEXXXXXX",    /* buffer lines go here */
  21.     *Joverc = "JOVE.RC";
  22.  
  23.